home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BMUG PD-ROM 1995 Fall
/
PD-ROM F95.toast
/
Programming
/
Programming Utilities
/
ViewIt 2.04 ƒ
/
ViewIt™ 2.04 Shareware
/
Projects
/
C Demos
/
MinimumLC.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-04
|
318 b
|
15 lines
|
[
TEXT/ttxt
]
/* Minimum LC Demonstration Program */
/* ©FaceWare 1991-92. All Rights Reserved. */
#include "FaceStorLC.h"
extern struct FaceRec fRec;
main()
{
strcpy(fRec.uName, "Minimum.Rsrc");
FaceIt(0L,DoInit,0L,0L,0L,0L);
FaceIt(0L,HlpWnd,0L,0L,10L,10L); /* optional */
for (;;) {
FaceIt(0L,DoLoop,0L,0L,0L,0L);
}
}